dynamic tree - traduzione in arabo
Diclib.com
Dizionario in linea

dynamic tree - traduzione in arabo

DATA STRUCTURE FOR REPRESENTING A FOREST, A SET OF ROOTED TREES
Link-cut tree; Link cut tree; Dynamic tree; Dynamic trees
  • Demonstrating how nodes are stored by depth in the link-cut tree
  • During an access old preferred paths are broken and replaced with path-parent pointers, while the accessed node is splayed to the root of the tree
  • Showing how a link cut tree transforms preferred paths into a forest of trees.

dynamic tree         
شجرة دينامية
dynamic Web Page         
  • When a request to a dynamic web page or resource is made, the [[application server]] processes the request using its server-side language.
WEBPAGE SERVER-DYNAMIC
Client-side scripting; Dynamic Web pages; Client-side script; Virtual documents; Dynamic web content; Dynamic Web page; Dynamic Web site; Dynamic web site; Client side scripting; Dynamic content; Server-side dynamic pages; Dynamic websites; Dynamic website; Dynamic webpage; Dynamic webpages; Dynamic web application; Browser script; Client-side rendering; Dynamic page; Client-side dynamic web page; Server-side dynamic web page
صفحة الويب الديناميكية.
dynamic page         
  • When a request to a dynamic web page or resource is made, the [[application server]] processes the request using its server-side language.
WEBPAGE SERVER-DYNAMIC
Client-side scripting; Dynamic Web pages; Client-side script; Virtual documents; Dynamic web content; Dynamic Web page; Dynamic Web site; Dynamic web site; Client side scripting; Dynamic content; Server-side dynamic pages; Dynamic websites; Dynamic website; Dynamic webpage; Dynamic webpages; Dynamic web application; Browser script; Client-side rendering; Dynamic page; Client-side dynamic web page; Server-side dynamic web page
صفحة ديناميكية .

Definizione

dynamic analysis
<programming> Evaluation of a program based on its execution. Dynamic analysis relies on executing a piece of software with selected test data. (1996-05-13)

Wikipedia

Link/cut tree


A link/cut tree is a data structure for representing a forest, a set of rooted trees, and offers the following operations:

  • Add a tree consisting of a single node to the forest.
  • Given a node in one of the trees, disconnect it (and its subtree) from the tree of which it is part.
  • Attach a node to another node as its child.
  • Given a node, find the root of the tree to which it belongs. By doing this operation on two distinct nodes, one can check whether they belong to the same tree.

The represented forest may consist of very deep trees, so if we represent the forest as a plain collection of parent pointer trees, it might take us a long time to find the root of a given node. However, if we represent each tree in the forest as a link/cut tree, we can find which tree an element belongs to in O(log(n)) amortized time. Moreover, we can quickly adjust the collection of link/cut trees to changes in the represented forest. In particular, we can adjust it to merge (link) and split (cut) in O(log(n)) amortized time.

Link/cut trees divide each tree in the represented forest into vertex-disjoint paths, where each path is represented by an auxiliary data structure (often splay trees, though the original paper predates splay trees and thus uses biased binary search trees). The nodes in the auxiliary data structure are ordered by their depth in the corresponding represented tree. In one variation, Naive Partitioning, the paths are determined by the most recently accessed paths and nodes, similar to Tango Trees. In Partitioning by Size paths are determined by the heaviest child (child with the most children) of the given node. This gives a more complicated structure, but reduces the cost of the operations from amortized O(log n) to worst case O(log n). It has uses in solving a variety of network flow problems and to jive data sets.

In the original publication, Sleator and Tarjan referred to link/cut trees as "dynamic trees", or "dynamic dyno trees".